{% extends 'base.html' %} {# Comments in templates go inside these #} {# INSTRUCTIONS: For an application this small, only worry about changing the 'content' block #} Variables are used with double curly braces, like this: {{ some_var }} With minor exceptions, variable names must be passed in from the `render_template()` call in the Python file. Variables should (generally) be set in Python before being used in a template. For a super-quick overview of templates, see the Jinja documentation at https://jinja.palletsprojects.com/en/2.10.x/templates/ #} {% block title %}Sushi Menu{% endblock %} {% block content %}

This is my sushi menu. There are many like it, but this one's mine.

Owner's View

{% for item in all_sushi %} {% endfor %}
ItemPrice
{{ item.name|escape }} {{ item.price|escape }} edit

Create new sushi

{% endblock %}